TechSmith Snagit
Download the MSI File: SnagIt File within the Version range of the purchased LicenseDownload and Run: TechSmith Deployment ToolBuild Package with the SnagIt Deployment Tool and insert the … Read More
If you fail to use any switches /qb /quiet /passive... and just have msiexec /i snagit.msi TRANSFORMS=snagit.mstyou will get the following error message..This MSI has been created for Enterpris… Read More
it should have been so easy... Sequenced (App-V v5) OK but did not work during testing, licensing info not coming through, had a little play, turns out it needs HKCU keys for licensing. It all … Read More
FYI - This was my final BAT file. My company needed all old versions of SnagIt removed since we have just purchased a large multi-user license.Deployed successfully via SCCM 2012.@ECHO OFFmsiex… Read More
I had to make one adjustment to the script listed above: RMDIR C:\windows\temp\snagit /s /q The switches on the end allowed the 'non-empty' folder to be deleted.mlh… Read More
The biggest issue I ran into with this install was actually the uninstalling of SnagIT 11. After trying multiple Msiexec switches, different methods, etc, I finally set the script to uninstall … Read More
There's a Toolkit available for SnagIt 11 or higher... https://support.techsmith.com/attachments/token/khge9elpsuso5w0/?name=TechSmith_Deployment_Tool.exe Read More
Auto Launch solution. With the command below you will include the process on "Startup" and even without an icon on StartUp the process will appear on the task bar and also minimized with the /… Read More
To eliminate the Registration Dialog on first launch include "NoRegistrationDialogSupport"=dword:00000001 So my final snagit.reg is: [HKEY_CURRENT_USER\Software\TechSmith\SnagIt\11\Updater] … Read More
Adding the following keys will prevent auto updates (note it is Current User): [HKEY_CURRENT_USER\Software\TechSmith\SnagIt\11\Updater]"LastCheck"=hex(b):00,00,00,00,00,00,00,00"DaysBetween"=d… Read More
Things to add to your mst: no Signup needed: TSC_EMAIL_SIGNUP="0" Licensekey within the installation: TSC_SOFTWARE_KEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" to start SnagIt when Window… Read More
For Deployment download the Snagit MSI Installer from TechSmith Website. You can find it under: http://www.techsmith.de/download/accessories/default.asp There is also an Enterprise Installatio… Read More
A command line setting the software key is (the variable %~dp0 is used for source directory): MsiExec.exe /i "%~dp0snagit.MSI" /quiet TSC_SOFTWARE_KEY=<Software Key> Read More
To inject a profile once snagit has already been launched and to preserve existing snagit profiles. Specific to SnagIt 10 (though easily modified for prior versions) [1] Registry sections that… Read More
The above information is great - However what i did slightly diffrent to make it easier for deployment was to add the TSC_DATA_STORE=0 to the propety table. I wrote a more idepth article on … Read More
Removing Snagit silently: msiexec.exe /x {22FC7536-BE5C-4E88-8069-C24689D34EC5} TSC_DATA_STORE=0 REBOOT=ReallySuppress /qb- (product code is for 10.0.1.58) TSC_DATA_STORE=0 skips the prompt a… Read More
Suggest using either TSC_DATA_STORE=0 or TSC_DATA_STORE=1 bypassing user prompt as to whether they want to keep snaggit related data, 0 keeps it, 1 removes it. I also set the uninstall to "/qn"… Read More
If you need to make this a silent un-install (not upgrade) you need to edit your .mst and remove all references to the custom action called "Action_For_RemoveDataStorePrompt". Otherwise upon r… Read More
With Windows 7 as the client OS combined with AppV, snagpriv.exe can fail to start. Add the following to the OSD file: <ENVLIST> <ENVIRONMENT VARIABLE="__COMPAT_LAYER">RunAsInvoker</ENVIRONMEN… Read More
Using the snagit.msi, the QB switch seems to hang the install until there is screen interaction. I changed it to /q and it went fine. Read More
To be able to configure a default configuration, install SnagIT normally, configure all the settings, close SnagIT (also the program in the system tray) and start Snagit from the command promp… Read More
If you do not want to create a MST File, following command will install SNagIT with only the basic components enabled: msiexec /i "snagit1000.msi" /qn REBOOT=ReallySuppress /lv "C:\xxxxx\_snagi… Read More